
    /* 🌟 RESET & BASE */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #ffffff;
      color: #111827;
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }

:root {
  --accent: #1a61b2;
  --accent-600: #1a61b2;
  --dark: #071133;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --container-max: 1200px;
  --radius: 12px;
  --glass: rgba(255, 255, 255, 0.75);
  --gradient: linear-gradient(135deg, var(--accent), #6c4cff);
  --ease: cubic-bezier(.2, .9, .2, 1);
  --shadow-1: 0 10px 30px rgba(2, 6, 23, .06);
  --shadow-2: 0 14px 40px rgba(2, 6, 23, .08);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9ff;
  color: #333;
  overflow-x: hidden;
}
  .hamburgerBtn{
      border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px 8px;
     display: none;
    }
    .navMenuMobile{
      display: none;
    }

/* ===== NAVBAR ===== */
/* nav {
      position: fixed; top:0; width:100%; display:flex; justify-content:space-between; align-items:center;
      padding:15px 50px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index:1000;
    }
    nav .logo { font-size:1.7em; font-weight:700; color:#007bff; cursor:pointer; }
    nav ul { list-style:none; display:flex; gap:30px; }
    nav ul li a { text-decoration:none; color:#333; font-weight:500; transition:color 0.3s ease; }
    nav ul li a:hover { color:#007bff; } */

/* Navbar container */
/* Navbar container */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  z-index: 999;
}

/* Logo */
nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav .logo span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a61b2;
}

/* Nav links */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #1a61b2;
  margin-top: 4px;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: #1a61b2;
  transform: translateY(-2px);
}

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 180px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.has-dropdown:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown a {
  padding: 12px 18px;
  color: #333;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background: #f3f7ff;
  color: #1a61b2;
  padding-left: 24px;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #1a61b2;
  cursor: pointer;
}

@media(max-width: 850px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: white;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  nav ul.active {
    max-height: 300px;
    padding: 20px 0;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile dropdown inside menu */
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    display: none;
    transform: none;
    box-shadow: none;
  }

  .has-dropdown.active .dropdown {
    display: flex;
  }
}

    /* 🚀 HERO SECTION */
    section#hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 20px 60px;
      background: #ffffff;
      position: relative;
    }

    .hero-content .logo {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .hero-content h1 {
      font-size: 2.8rem;
      margin: 0;
      color: #1a61b2;
      letter-spacing: 1px;
      text-shadow: 0 0 10px rgba(43,158,224,0.3);
      animation: fadeIn 2s ease-in;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #374151;
      margin-top: 10px;
      animation: fadeIn 3s ease-in;
    }

    .glow {
      color: #1a61b2;
      text-shadow: 0 0 20px rgba(43,158,224,0.4), 0 0 40px rgba(43,158,224,0.3);
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from { text-shadow: 0 0 10px rgba(43,158,224,0.3); }
      to { text-shadow: 0 0 25px rgba(43,158,224,0.6); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ⚡ FOOTER */
/* Footer */
footer {
  background-color: #333;
  background: var(--dark);
  color: #f8fafd;
  padding: 36px 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: var(--container-max);
  margin: 0 auto
}

footer a {
  color: #cbd5e1;
  display: block;
  margin: 6px 0
}

/* Back to top */
.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(11, 99, 255, .18);
  cursor: pointer;
  z-index: 1400;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.backtop.show {
  opacity: 1;
  transform: translateY(0) scale(1)
}

a {
  text-decoration: none;
  text-align: left;
}

/* Footer links hover effect */
footer a {
  color: #ebeff4;
  /* Default link color */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: #1a61b2;
  /* Change color on hover */
  transform: translateX(5px);
  /* Optional slight slide effect */
}

.piaddress p {

  letter-spacing: -.5px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  margin: 0 0;
  color: #ffff;
}

footer h4 {
  margin-bottom: 15px; /* space below the h4 */
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  /* translucent white */
}
/* footeer bottom */
.terms {
  display: flex;
  align-items: center;
  justify-content: center; /* use 'flex-start' if you prefer left alignment */
  gap: 8px;
  margin-top: 18px;
  color: #f1f5fc;
  font-size: 0.9rem;
  flex-wrap: wrap; /* prevents overflow on smaller screens */
}

.terms a {
  color: #e2e9f3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms a:hover {
  color: #1a61b2;
}
    /* 📱 RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hero-content h1 {
        font-size: 2rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
    }

    @media screen and (min-width: 320px) and (max-width: 767px){
/*** Mobile Menu Starts**/
   .hamburgerBtn{
    display: block;
   }
   .navMenuDesktop{
    display: none;
   }
   .navMenuMobile.show {
        display: flex;
        position: absolute;
        background: #ddd;
        z-index: 999999;
        flex-direction: column;
        max-height: none;
                padding: 10px;
}
   .navMenuMobile.show  .has-dropdown .dropdown {
               position: static;
        opacity: 1;
        display: block;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: transparent;
        padding-left: 20px;
}

   ul.navMenuMobile.show  li {
    text-align: center;
    padding: 1px 0;
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
   ul.navMenuMobile.show  li a{
    display: block;
   }
 ul.navMenuMobile.show li a::after {
    content: none;
}

/*** Mobile Menu Ends**/



}